home *** CD-ROM | disk | FTP | other *** search
/ 15 Beaut Aussie Games 1 / BEAUTGAMESV1.iso / pc / Windows / data1.cab / Program_Files / dswmedia / games / canetoad.dcr / gameControl_28_back to walkabout.ls < prev    next >
Encoding:
Text File  |  2002-01-01  |  530 b   |  25 lines

  1. on mouseUp
  2.   global totalScore, standalone
  3.   if the optionDown then
  4.     beep()
  5.     case random(3) of
  6.       1:
  7.         put random(200) into field "toadTotalScore"
  8.       2:
  9.         put random(200) + 500 into field "toadTotalScore"
  10.       otherwise:
  11.         put random(200) + 1000 into field "toadTotalScore"
  12.     end case
  13.     if not standalone then
  14.       saveIcon(24)
  15.       saveIcon(25)
  16.       saveIcon(26)
  17.     end if
  18.     goHighScores()
  19.   else
  20.     if the moviePath contains "walkabout" then
  21.       goWalkabout()
  22.     end if
  23.   end if
  24. end
  25.